home *** CD-ROM | disk | FTP | other *** search
/ Micromanía 92 / CDMM92_1.ISO / SOF 2 SDK / sof2sdk-101.msi / _92D6AC311BB48EBA344BBABC89DA6AB0 / _DF87B786CAD54EA1A8050A4785C76710 < prev    next >
Encoding:
Text File  |  2002-06-06  |  648 b   |  38 lines

  1. // Copyright (C) 2001-2002 Raven Software.
  2. //
  3. // gt_local.h -- local definitions for gametype module
  4.  
  5. #include "../../game/q_shared.h"
  6. #include "../gt_public.h"
  7. #include "../gt_syscalls.h"
  8.  
  9. typedef struct gametypeLocals_s
  10. {
  11.     int        time;
  12.  
  13.     int        redFlagDropTime;
  14.     int        blueFlagDropTime;
  15.  
  16.     int        flagReturnSound;
  17.     int        flagTakenSound;
  18.     int        flagCaptureSound;
  19.  
  20.     int        redCaptureEffect;
  21.     int        blueCaptureEffect;
  22.  
  23.     int        iconRedFlag;
  24.     int        iconBlueFlag;
  25.     int        iconRedFlagDropped;
  26.     int        iconBlueFlagDropped;
  27.     int        iconRedFlagCarried;
  28.     int        iconBlueFlagCarried;
  29.  
  30. } gametypeLocals_t;
  31.  
  32. extern    gametypeLocals_t    gametype;
  33.  
  34.  
  35.  
  36.  
  37.  
  38.